flutter transparent color

72

  backgroundColor: Colors.black.withOpacity(0.5)
Color(0xFF0E3311).withOpacity(0.5)
Opacity(
          opacity: 0.5,
          child: Container(
          color: Colors.red,
          width: 200,
          height: 200,
  ),
        ),

Comments

Submit
0 Comments